summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Locatti <42481638+goldenx86@users.noreply.github.com>2023-05-26 22:35:13 +0200
committerGitHub <noreply@github.com>2023-05-26 22:35:13 +0200
commiteff0cc35916139156e99ef2ca45517e37f7d0f42 (patch)
tree49be0721db1fba38eca087b1200310cd2cd35094
parentMerge pull request #10221 from Kelebek1/partial_dsp_revert (diff)
parentshader_recompiler: fix copy-paste error (diff)
downloadyuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar.gz
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar.bz2
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar.lz
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar.xz
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.tar.zst
yuzu-eff0cc35916139156e99ef2ca45517e37f7d0f42.zip
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp
index 442365a26..c2a0ee6f1 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_funnel_shift.cpp
@@ -30,7 +30,7 @@ void SHF(TranslatorVisitor& v, u64 insn, const IR::U32& shift, const IR::U32& hi
union {
u64 insn;
BitField<0, 8, IR::Reg> dest_reg;
- BitField<0, 8, IR::Reg> lo_bits_reg;
+ BitField<8, 8, IR::Reg> lo_bits_reg;
BitField<37, 2, MaxShift> max_shift;
BitField<47, 1, u64> cc;
BitField<48, 2, u64> x_mode;